Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - multi threaded server
Search - multi threaded server - List
DL : 0
该程序是用java写的一个基于多线程web服务器的线程池程序,纯属原创,供大家参考和学习-The program is written in java based on a multi-threaded web server thread pool program is purely original, for your reference and learning
Update : 2024-05-19 Size : 6844416 Publisher : wenjian

DL : 2
AppWeb是完全遵循GPL软件许可协议(GNU General Public License)的开源Web服务器。 AppWeb Web服务器软件在功能上比GoAhead更加丰富和实用, 除了GoAhead已有的功能之外,还有如下特点: 支持服务器端的JavaScript脚本 支持嵌入式服务器端Web页面(Embedded Server Pages) 可以随意切换的单线程和多线程运行模式 AppWeb服务器软件采用模块化的设计来实现各个功能组件-AppWeb is in full compliance with GPL software license agreement (GNU General Public License) open source Web server. AppWeb Web server software is functionally richer than GoAhead and practical, in addition to existing functionality GoAhead, there are the following features: support for server-side JavaScript embedded server-side scripting support single Web page (Embedded Server Pages) can freely switch threaded and multi-threaded operating mode AppWeb server software uses a modular design to achieve the various functional components
Update : 2024-05-19 Size : 9354240 Publisher : stephen1w

DL : 0
网络白板,实现多线程,客户端和服务器,画图板可以扩展-Network whiteboard, multi-threaded, client and server
Update : 2024-05-19 Size : 279552 Publisher : 费仁杰

DL : 0
http客户端,服务器,多线程,可实现简单的get命令,包含完整的报头。-http client, server, multi-threaded, you can get simple commands, including complete header.
Update : 2024-05-19 Size : 5120 Publisher : niu

DL : 0
局域网聊天程序:一个以Socket通信机制为基础的网络聊天程序。 服务器端: 多线程方式处理客户端,负责响应客户端的各种信息:用户登录、客户端请求处理。 客户端: (1)、负责用户界面初始化、为用户提供登录界面、将信息发送至服务器、接受服务器反馈,实时显示信息。 (2)、负责实现用户界面的各种组件事件的处理。 (3)、当用户单击好友图标时,将初始化新的聊天窗口,并通过UDP建立与其他用户的通信。当用户收到其他用户发来的数据报,将在本地初始化新的对话窗口,并开始通信。-LAN chat program: a Socket communication mechanism based network chat program. Server: Multi-threaded approach to the client, the client is responsible for a variety of information in response to: user login, the client request processing. Client: (1) responsible for the initialization of the user interface to provide users with the login screen, to send information to the server, the server accepts feedback, real-time display of information. (2), responsible for implementing the various components of the user interface event processing. (3), when the user clicks a friend icon will initialize a new chat window and establish communication with other users via UDP. When the user receives another user datagram sent to the initialization of a new dialog window locally and start communication.
Update : 2024-05-19 Size : 466944 Publisher : stellar

之前一直在CocoaChina上面潜水,虽然做iOS开发也快2年了,但是总觉得缺少了点什么。以前查看英文API文档,有些细节总是记不住,每次看完之后也没什么印象。忽然有一天有人向我抱怨说查看官方英文API文档太痛苦了,然后我就想如果我把一些常用的官方文档翻译为中文的话,或许可以帮助这批需要帮助的人,然后偶就心血来潮,开始了自娱自乐的翻译之旅。帮助别人的同时,自己也获得快乐。 多线程编程在开发应用的时候非常有帮助。比如你可以在后台加载图片,等图片加载完成后再在主线程更新等,或者在后台处理一些需要占用CPU很长时间的事件(比如请求服务器,加载数据等)。要体会多线程编程的好处,还得多实战,结合使用多种多线程技术。特别要注意Run Loop的使用,很多开发者在编写多线程应用的时候很少关注过Run Loop。如果你仔细阅读并掌握Run Loop的细节,将会帮助你写出更优美的代码。同步是多线程编程的老生常谈,估计大学时候大家都基本熟悉了同步的重要性。-Before diving has been CocoaChina above , although do iOS development is also almost 2 years, but always felt something missing . View previous API documentation in English , some details always remember , no impression after reading it every time . Suddenly one day someone complained to me to see the official API documentation in English too painful , and I thought if I put some commonly used official documents translated into Chinese , then perhaps you can help these people who need help , then Oujiu whim, began a trip to entertain translation . Help others at the same time , they would be happy . In the development and application of multi-threaded programming time is very helpful. For example, you can load images in the background , such as image loading is complete before updating the main thread , or the need to deal with some CPU- long events ( such as requests to the server , load data, etc. ) in the background. To experience the benefits of multi-threaded programming , but
Update : 2024-05-19 Size : 1349632 Publisher : jackie

TBBMM - A Multicore Scalable Delphi and C++ Builder Memory Manager Replacement FastMM was adopted by Borland / CodeGear (now Embarcadero) end of year 2005 as the default memory manager for Delphi and C++ Builder. FastMM is fast, but... FastMM does not scale well in a multi-threaded environment, especially when running under a machine with more than 1 core. It is quite surprising, considering one of CodeGear s main selling point with the new memory manager is that it has good scalability in multithreaded environment. To FastMM s credit however (and I have tremendous respect for Pierre le Riche, the author of FastMM), it is about 10 faster than Microsoft Visual Studio s built-in memory manager in single-thread. I came across this when I was doing some thing as simple as concatenating a string in multiple threads, trying to simulate a server which processes requests from multiple clients. Working my way to reproduce the problem with minimal code, I came up with this:- TBBMM - A Multicore Scalable Delphi and C++ Builder Memory Manager Replacement FastMM was adopted by Borland / CodeGear (now Embarcadero) end of year 2005 as the default memory manager for Delphi and C++ Builder. FastMM is fast, but... FastMM does not scale well in a multi-threaded environment, especially when running under a machine with more than 1 core. It is quite surprising, considering one of CodeGear s main selling point with the new memory manager is that it has good scalability in multithreaded environment. To FastMM s credit however (and I have tremendous respect for Pierre le Riche, the author of FastMM), it is about 10 faster than Microsoft Visual Studio s built-in memory manager in single-thread. I came across this when I was doing some thing as simple as concatenating a string in multiple threads, trying to simulate a server which processes requests from multiple clients. Working my way to reproduce the problem with minimal code, I came up with this:
Update : 2024-05-19 Size : 101376 Publisher : rupee76

DL : 0
基于unix环境的多线程编程聊天室实现源码,能实现群聊功能。客服端可以设置20个,服务器端多个线程实现数据接收转发,数据采用生产者-消费者模式处理-Unix-based programming environment for multi-threaded chat room source code, to achieve a group chat feature. Client service can be set 20, the server receives multiple threads for data forwarding, data using producer- consumer mode processing
Update : 2024-05-19 Size : 10240 Publisher : 杨健

DL : 0
JAVA课程设计(五子棋) 包含论文 摘 要 目前,以计算机技术和网络技术为核心的现代网络技术已在现实生活和生产中得以广泛的使用,休闲类网络游戏集趣味性,娱乐性,互动性和益智性于一体,已经成为多数人群的休闲方式。 本软件使用JAVA语言实现,通过对SCOKET技术的理解,在此基础上建立服务器与多客户端的连接,利用多线程处理多个客户端之间的信息。 通过对软件的编写,加深对以上技术的理解和掌握。-JAVA Course Design (331) contains abstracts Currently, computer technology and network technology as the core of modern network technology has been widely used in real life and production, the casual game set interesting, entertaining, interactive and benefits intellectual in the body, has become the majority population of leisure. The software uses the JAVA language, understood by SCOKET technology, establish a connection to the server and multiple clients on this basis, the use of multi-threaded processing of information between multiple clients. By writing the software, deepen understanding and mastery over technology.
Update : 2024-05-19 Size : 6097920 Publisher : 鄢琳

典型的多线程socket通信代码,简单明了,包括客户端和服务端-A typical multi-threaded socket communication code, simple and clear, including client and server
Update : 2024-05-19 Size : 2048 Publisher : hf

多线程网络编程,客户端多线程连接服务器,连接成功后接收服务端发送的数据,可以修改成客户端网络模块。-Multi-threaded network programming, multi-threaded client connection to the server, the connection after successfully receiving the data sent by the server, the client can be modified into a network module.
Update : 2024-05-19 Size : 9216 Publisher :

使用C#语言Socket类TCP协议编写的Socket客户端和服务端通讯Demo,涉及到数据发送接收、多线程、监视器等操作。-Socket class using the C# language written protocol TCP Socket client and server communications Demo, involves sending and receiving data, multi-threaded, monitors and other operations.
Update : 2024-05-19 Size : 14336 Publisher :

DNS域名解析服务器的简单实现,支持多线程处理,并解析多种不同格式的解析,数据的上传-Simple implementation of DNS name resolution server, support for multi-threaded processing, and analysis to resolve a variety of different formats, upload the data
Update : 2024-05-19 Size : 178176 Publisher : xueqiang

DL : 0
HTML5+websocket实现PHP简单聊天室,含使用文档+源代码,开发语言:HTML5,Javascript,php,开发工具:Phpstorm 4.0,网上基本找不到一个成功用php写server的案例,比较少商业用途会使用这个脚本语言来实现server。html5 websocket的根本通讯还是基于http get,所以在性能上,理论值会比tcp socket低一点点。   PHP的垃圾回收机制,做socket长连接,是有问题的。   关于多线程,Php本来是单线程的,如果要做到多线程,可以做,但是一些文章说做出来的那个效果,是假的多线程,并不是实际意义上的多线程处理事务(文章说的,尚未证实)。php server长时间运行,是会挂起来的,要定期重启server。可能是由于长连接的原因。   因采用HTML5技术,所以你的浏览器需要支持HTML5,推荐使用火狐或Chrome,Safari等-HTML5+ websocket achieve a simple PHP chat rooms, including the use of documentation+ source code, development languages​ ​ : HTML5, Javascript, php, development tools: Phpstorm 4.0, basically find a successful online server with php written cases, relatively few commercial uses will using this scripting language to implement server. html5 websocket communication is based on the fundamental http get, so the performance will be lower than the theoretical value tcp socket a little bit. PHP s garbage collection mechanism, so long connection socket, there is a problem. Multithreading, Php originally single-threaded, multi-threading if you want to do, you can do it, do it, but some articles say that the effect is a fake multi-threaded, multi-threaded processing services is not practical sense (article says I have not yet confirmed). php server long run, it will hang up, periodically restart the server. May be due to the long connection. Due to the use of HTML5 technology, so
Update : 2024-05-19 Size : 472064 Publisher : spudn90

DL : 0
是《精通Linux C编程》刘学勇的书后边的一个例子。用多线程实现了一个售票系统。由于界面的一些库难以使用,所以服务器端我自己进行了一些调整,客户端完全没有做界面。如果大家觉得界面不需要的话,服务器端的也可以删掉不用。-The book is an example of Liu Xueyong behind the " proficient Linux C programming." Multi-threaded implementation of a ticketing system. Since some library interface is hard to use, so the server side I made some adjustments, the client did not do the interface. If you think the interface is not required, then the server can not be deleted.
Update : 2024-05-19 Size : 39936 Publisher : 叶晞

通过继承Thread类,调整实验三完成的单线程服务器(已上传Pudn:SimpleHttp1.0.zip)的功能实现逻辑,将其扩展成支持多线程的HTTP服务器。-Thread class through inheritance, adjust the experiment completed three single-threaded server (uploaded Pudn: SimpleHttp1.0.zip) implement logic functions, to be extended to support multi-threaded HTTP server.
Update : 2024-05-19 Size : 4096 Publisher : Thomas Lee

DL : 0
老马写的一个聊天工具。 文件: 中文简体版(内附中文简体版说明文件) 源代码(VC++ 6.0) 功能: 一个网络聊天程序,任何一台机器均可成为服务器,其它想聊天的机器往它那里联即可。程序本身既可当Server又可当Client。 动机: 用于测试面向连接的socket编程,自己建立心跳保持功能。 说明: 曾经有同事评价这个软件的多线程部分写得太复杂,但是我个人认为抽象得还可以。-Maradona to write a chat tool. File: Chinese Simplified (with Chinese Simplified documentation) source code (VC++ 6.0) function: an Internet chat program, any one machine can become a server, and the other would like to chat machine where it can be linked. The program itself can be when Server can be when Client. Motivation: Testing for connection-oriented socket programming, establish their own heartbeat hold function. Description: There was a colleague evaluation of multi-threaded part of the software is too complicated to write, but I personally think that abstraction was okay.
Update : 2024-05-19 Size : 79872 Publisher : xycy

实现了聊天功能 局域网文件传输功能 分客户端和服务器端-File transfer is one of the most commonly used services on the Internet, a multi-threaded file transfer can effectively improve the file transfer speed and efficiency, this system use the Windows sockets implementation, Socket can be regarded as two network applications for communications, each an endpoint of communication.Client software and server software system points two parts, the need to use multithreading knowledge at the same time, an application can have multiple threads at the same time with the use of CPU resources, greatly strengthen the CPU utilization, but also from another aspect to speed up the transmission speed.As TCP/IP agreement linking the service is designed client/server application procedures for the mainstream standards, Therefore, the software used mainly TCP/IP agreement network communication technology client, server from CAsyncSocket inherited category, and therefore the software is completely asynchronous communi- cation procedures in Windows XP system
Update : 2024-05-19 Size : 56320 Publisher : vzyuki

DL : 0
可动态配置线程数的多线程并发,并发Ping 服务器-Dynamically configurable multi-threaded concurrent threads Concurrent Ping Server
Update : 2024-05-19 Size : 8192 Publisher : eason

DL : 0
vb2008下UDP协议的局域网聊天程序,多线程,多人聊天,分服务器和客户端 实时更新在线用户,实时检查是否掉线,完善的批注说明 该系统实现了私聊,群聊功能,在线用户列表图标和文字显示 该系统穿透能力强,对于双网卡模式服务器管理的局域网同样适用,只要客户端能ping通服务器就能正常聊天-Vb2008 under the UDP protocol LAN chat program, multi-threaded, multi chat, server and client 实时更新在线用户,实时检查是否掉线,完善的批注说明 Real time updates online users, real-time check line, perfect annotation instructions 该系统实现了私聊,群聊功能,在线用户列表图标和文字显示 The system realizes the private chat, group chat function, online users list of icons and text display 该系统穿透能力强,对于双网卡模式服务器管理的局域网同样适用,只要客户端能ping通服务器就能正常聊天 The system of strong penetrating ability, also suitable for dual card server management LAN, as long as the client is able to Ping server can normal chat
Update : 2024-05-19 Size : 297984 Publisher : tystq
« 1 2 ... 24 25 26 27 28 2930 31 32 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.